home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / linux-bo / setboot-.000 / setboot- / setboot / Makefile < prev    next >
Makefile  |  1994-03-29  |  448b  |  25 lines

  1. CFLAGS = -fomit-frame-pointer -O1 -DNDEBUG
  2. LDFLAGS = -s -N
  3.  
  4. VERSION = 1.2
  5.  
  6. BINDIR = /usr/bin
  7.  
  8. OBJS = set-boot.o
  9.  
  10. set-boot: $(OBJS)
  11.     $(CC) -o set-boot $(LDFLAGS) $(OBJS)
  12.  
  13. install: setboot set-boot
  14.     install -m 700 setboot $(BINDIR)
  15.     install -m 700 set-boot $(BINDIR)
  16.  
  17. tar:
  18.     (cd ..; tar czf setboot/setboot-$(VERSION).tar.gz \
  19.      setboot/{README,Makefile,*.[ch],setboot{,.exe}})
  20.  
  21. clean:
  22.     rm -f $(OBJS) set-boot core
  23.  
  24. set-boot.o : set-boot.c bootmgr.h 
  25.